@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');
 * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background-color: #0a0a0a;
    font-family: 'Roboto', sans-serif;
    color: white;
    line-height: 1.4;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    text-align: center;
  }
  
  header {
    background-color: #000;
    padding: 20px 0;
    border-bottom: 2px solid #333;
  }
  
  header h1 {
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    font-size: 36px;
    color: #d4af37;
    margin: 0;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  }
  
  .search-container {
    background-color: #1a1a1a;
    padding: 15px 0;
    border-bottom: 1px solid #333;
  }
  
  .search-box {
    background-color: #333;
    border: 1px solid #555;
    padding: 10px 15px;
    color: white;
    font-size: 14px;
    border-radius: 4px;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }
  
  .search-box::placeholder {
    color: #888;
  }
  
  nav {
    background-color: #1a1a1a;
    padding: 15px 0;
    border-bottom: 1px solid #333;
  }
  
  /* Navigation links styling */
.nav-links {
  display: flex;
  justify-content: center;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 10px;
  padding: 15px;
  max-width: 800px;
  margin: 0 auto;
}

.nav-links a {
  display: flex;
  padding: 10px 15px;
  background: #222;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  text-align: center;
  transition: background 0.3s ease;
}

.nav-links a:hover {
  background: #333;
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
  .nav-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    padding: 10px;
  }
}

@media screen and (max-width: 480px) {
  .nav-links {
    grid-template-columns: 1fr;
    gap: 5px;
  }
  
  .nav-links a {
    padding: 8px 10px;
    font-size: 14px;
  }
}
  
  .main-content {
    padding: 20px 0;
  }
  
  .tags-section {
    margin-bottom: 20px;
  }
  
  .tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .tag {
    background-color: #dc3545;
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    white-space: nowrap;
    transition: all 0.3s ease;
  }
  
  .tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  }
  
  .tag.bollywood {
    background-color: #28a745;
  }
  
  .tag.bollywood-new {
    background-color: #fd7e14;
  }
  
  .tag.dual-junction {
    background-color: #dc3545;
  }
  
  .tag.hollywood {
    background-color: #007bff;
  }
  
  .alert {
    background-color: #8b0000;
    color: white;
    font-weight: bold;
    padding: 15px 20px;
    margin: 20px auto;
    border-radius: 6px;
    font-size: 14px;
    max-width: 800px;
    text-align: center;
    border: 1px solid #a00000;
  }
  
  .movie-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 25px;
    margin: 20px auto;
    max-width: 900px;
    border: 1px solid #333;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  
  .movie-title {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 15px 0;
    color: #fff;
    text-align: center;
  }
  
  .movie-date {
    color: #888;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .movie-poster-section {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    align-items: flex-start;
  }
  
  .movie-poster {
    flex-shrink: 0;
    width: 250px;
  }
  
  .movie-poster img {
    width: 100%;
    height: 370px;
    object-fit: cover;
    border-radius: 8px;
    border: 3px solid #333;
    transition: all 0.3s ease;
  }
  
  .movie-poster img:hover {
    transform: scale(1.05);
    border-color: #ffd700;
  }
  
  .movie-info-content {
    flex: 1;
  }
  
  .share-buttons {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin: 2px 0;
    flex-wrap: wrap; /* Allow buttons to wrap on small screens */
    padding: 0 10px;
  }
  
  .share-btn {
    padding: 8px 12px;
    border: none;
    border-radius: 4px;
    background: #333;
    color: white;
    cursor: pointer;
    font-size: 14px;
    min-width: 80px;
    transition: background 0.3s ease;
  }
  
  /* Responsive adjustments */
  @media screen and (max-width: 480px) {
    .share-buttons {
      gap: 4px; /* Reduce gap on mobile */
    }
    
    .share-btn {
      padding: 6px 8px;
      font-size: 12px;
      min-width: 60px;
    }
  }
  
  /* For very small screens */
  @media screen and (max-width: 320px) {
    .share-buttons {
      flex-direction: column;
      align-items: center;
    }
    
    .share-btn {
      width: 100%;
      max-width: 200px;
    }
  }
  
  .movie-info {
    margin: 20px 0;
    line-height: 1.6;
  }
  
  .movie-info p {
    margin-bottom: 15px;
    font-size: 14px;
  }
  
  .highlight {
    color: #ffd700;
    font-weight: 600;
  }
  
  .blue-link {
    color: #4dabf7;
    text-decoration: none;
    font-weight: 600;
  }
  
  .green-text {
    color: #51cf66;
    font-weight: 600;
  }
  
  .orange-text {
    color: #ff922b;
    font-weight: 600;
  }
  
  .movie-details {
    background-color: #0d1117;
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
    border: 1px solid #30363d;
  }
  
  .movie-details h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .detail-item {
    margin-bottom: 8px;
    font-size: 14px;
  }
  
  .detail-label {
    color: #58a6ff;
    font-weight: 600;
    display: inline-block;
    width: 120px;
  }
  
  .imdb-rating {
    color: #f85149;
    font-weight: 600;
  }
  
  .hdtc-quality {
    color: #ff6b6b;
    font-weight: bold;
  }
  
  .synopsis {
    margin: 20px 0;
  }
  
  .synopsis h3 {
    color: #ffd700;
    margin-bottom: 15px;
    font-size: 18px;
  }
  
  .synopsis p {
    line-height: 1.6;
    font-size: 14px;
    color: #e6e6e6;
  }
  
  .screenshots {
    margin: 25px 0;
  }
  
  .screenshots h3 {
    color: #ffd700;
    margin-bottom: 20px;
    font-size: 18px;
    text-align: center;
  }
  
  .screenshots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
  }
  
  .screenshots-grid img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    border: 2px solid #333;
    transition: all 0.3s ease;
  }
  
  .screenshots-grid img:hover {
    transform: scale(1.05);
    border-color: #ffd700;
  }
  
  .download-section {
    background-color: #0d1117;
    padding: 20px;
    border-radius: 8px;
    margin: 20px 0;
    border: 1px solid #30363d;
  }

  h2{
    text-align: center;
  }
  
  .download-item {
    background-color: #1a1a1a;
    border-radius: 6px;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid #333;
  }
  
  .download-title {
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    text-align: center;
  }
  
  .download-btn {
    background: linear-gradient(45deg, #28a745, #20c997);
    border: none;
    padding: 12px 25px;
    color: white;
    font-weight: 700;
    font-size: 14px;
    border-radius: 6px;
    cursor: pointer;
    display: block;
    margin: 0 auto;
    width: 250px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
  }
  
  .download-btn:hover {
    background: linear-gradient(45deg, #218838, #1ea080);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(40, 167, 69, 0.3);
  }
  
  .download-btn:before {
    content: "⚡ ";
  }
  
  .download-btn:after {
    content: " ⚡";
  }
  
  .footer {
    text-align: center;
    color: #666;
    font-size: 12px;
    margin: 30px 0;
    padding: 20px;
    border-top: 1px solid #333;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .container {
      padding: 0 10px;
    }
    
    header h1 {
      font-size: 28px;
      letter-spacing: 2px;
    }
    
    .nav-links {
      gap: 15px;
    }
    
    .nav-links a {
      font-size: 12px;
      padding: 6px 10px;
    }
    
    .movie-card {
      padding: 20px;
      margin: 15px auto;
    }
    
    .movie-title {
      font-size: 22px;
    }
    
    .movie-poster-section {
      flex-direction: column;
      align-items: center;
    }
    
    .movie-poster {
      width: 200px;
      margin-bottom: 20px;
    }
    
    .movie-poster img {
      height: 300px;
    }
    
    .screenshots-grid {
      grid-template-columns: repeat(2, 1fr);
    }
    
    .download-btn {
      width: 100%;
      max-width: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .nav-links {
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    
    .tags {
      gap: 5px;
    }
    
    .tag {
      font-size: 11px;
      padding: 5px 10px;
    }
    
    .movie-title {
      font-size: 20px;
    }
    
    .movie-poster {
      width: 200px;
    }
    
    .movie-poster img {
      height: 270px;
    }
    
    .screenshots-grid {
      grid-template-columns: 1fr;
    }
    
    .screenshots-grid img {
      height: 250px;
    }
  }
